home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 501-525 / disk_503 / pcq / pascalreadme < prev    next >
Text File  |  1992-05-06  |  2KB  |  43 lines

  1. ===================================================================
  2.  
  3.                       PCQ Pascal version 1.2
  4.                  A Pascal compiler for the Amiga
  5.                          by Patrick Quaid
  6.  
  7.  
  8. ===================================================================
  9.  
  10. PCQ Pascal is a simple Pascal compiler for the Amiga personal
  11. computer.  It is freely distributable, which means that I retain
  12. the copyright to the compiler, the runtime library, the source of
  13. the compiler and runtime library, as well as this documentation.
  14. It can all be freely distributed as long as you don't charge too
  15. much (see the last section for more information).  To summarize
  16. the compiler's features:
  17.  
  18. The bad:
  19.  
  20.     o  The compiler doesn't support sets.
  21.     o  It isn't compatible with Turbo Pascal, although it's getting
  22.            closer.
  23.     o  Some things are slightly different from Standard Pascal.
  24.     o  The compiler gets knocked for a loop by most errors.
  25.  
  26. The good:
  27.  
  28.     o  It works.
  29.     o  It supports include files.
  30.     o  It allows for separate compilation, although you have to
  31.            do the checking (this isn't Modula-2, after all).
  32.     o  It supports records, enumerated types, pointers, arrays,
  33.            and C strings.
  34.     o  Type casts as found in Modula-2 is supported.  In other
  35.            words, something like "Byte('d')" is legal.
  36.     o  Several features from Turbo and Quick Pascal, such as Exit
  37.            procedures, operators such as Shl and Shr, and typed
  38.            constants, are supported.
  39.     o  You can have as many const, var, type, procedure and
  40.            function blocks as you want, in any order.
  41.     o  It's free!
  42.  
  43.